home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_13_10
/
jagger
/
printf3.h
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-07-25
|
293 b
|
19 lines
/* Listing 10, printf.h, version 3 */
#ifndef PRINTF_H
#define PRINTF_H
#ifndef NDEBUG
#include "dbmeta.h" /* Listing 9 */
DB_DECL(int,printf,
(const char format[], ...));
#ifdef printf
#undef printf
#endif
#define printf DB_CALL(printf)
#endif /* NDEBUG */
#endif /* PRINTF_H */